home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / examples / doc / sigprc02 < prev    next >
Text File  |  1997-07-08  |  472b  |  15 lines

  1. ; This batch file creates a plot of the simulated signal used
  2. ; in the example from Chapter 13, "Signal Processing", of _Using IDL_.
  3.  
  4. @sigprc01.bat               ; include simulated signal
  5. T = delt * FINDGEN(N)       ; vector of discrete times
  6.  
  7. ; create a histogram plot of time data from t1 to t2
  8. t1 = 1.0 
  9. t2 = 2.0 
  10.  
  11. PLOT, T + delt/2, U, PSYM=10, $
  12.       XRANGE=[t1,t2], XTITLE='time in seconds', $
  13.       YTITLE='amplitude', TITLE='Portion of Sampled Time Signal u(k)'
  14.  
  15.